5
How do I put a picture on the control's background

with ScrollBar1 do
begin
	Picture := ScrollBar1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	VisiblePart[EXSCROLLBARLib_TLB.exBackgroundPart] := False;
	BackColor := $80000004;
end
4
How can I change the size of control's font

with ScrollBar1 do
begin
	Font.Size := 12;
	ForeColor := RGB(255,0,0);
	Caption[EXSCROLLBARLib_TLB.exThumbPart] := '<img>0</img>thumb';
end
3
How do I change the control's font

with ScrollBar1 do
begin
	Font.Name := 'Tahoma';
	ForeColor := RGB(255,0,0);
	Caption[EXSCROLLBARLib_TLB.exThumbPart] := '<img>0</img>thumb';
end
2
How can I change the control's foreground color

with ScrollBar1 do
begin
	ForeColor := RGB(255,0,0);
	Caption[EXSCROLLBARLib_TLB.exThumbPart] := '<img>0</img>thumb';
end
1
How can I change the control's background color

with ScrollBar1 do
begin
	BackColor := RGB(0,255,0);
	VisiblePart[EXSCROLLBARLib_TLB.exBackgroundPart] := False;
end